home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / stdio / fsetpos.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  116b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef fsetpos
  4.  
  5. int fsetpos(FILE *f,const fpos_t *ptr)
  6. {
  7.     return(fseek(f,*ptr,SEEK_SET));
  8. }
  9.  
  10.